home *** CD-ROM | disk | FTP | other *** search
/ Zoom 2 / Zoom - Release 2 (1996)(Active Software)[!].iso / programming / amos / amossible / disthis < prev    next >
Encoding:
Text File  |  1980-05-27  |  2.0 KB  |  45 lines

  1.  
  2.  
  3.  Although AQMOS is very powerful itself,theres no reason why you shouldn't
  4. use things from `outside'AMOS to improve your programs.
  5.  So what can you load in?
  6. Apart from other sections of program code,you could insert graphics(From
  7. software such as "Deluxe Paint"),sampled sound (Collected by a sound sampler
  8. like "Stereo Master"),music(From `tracker' programs like "MED" or "sound
  9. Tracker")and Bob or Sprite Banks.
  10.  When we refer to oading something in,we'll mean via a file on a disk-You
  11. may have to create these files yourself,or we may have created them for you.
  12.  When loading something into AMOS,you'll(More often than not)have to
  13. `declare' which disk disk drive,on which disk,and in which directory a file
  14. is that you want to access.
  15.     There are certain rules that apply to loading different types of
  16. files(These are covered in the specific documents and examples),but in
  17. general,you will just have to type:
  18. Load
  19. And then,after "Load" you must enclose the disk drive number,the directory,
  20. and the name of the file that you want to load,in inverted commas,like this:
  21. Load " "
  22. For example,if you imagine that you had a file called "BLIMEY"(Its a silly
  23. name,I know-But then again,you can call files whatever you want),in a
  24. directory called "AMOSBITS" in the internal disk drive,you would write:
  25. Load "DF0:AMOSBITS/BLIMEY"
  26.  
  27. You may have seen a file on an AMOS programs disk with .Abk written after
  28. it.This stands for AMOS bank.And is attached to any files name that has been
  29. created via one of the many AMOS bank makers(Such as the Sprite/Bob makers
  30. and the Sample Bank maker).
  31.   If you save a bank in any of these bank makers(Or save anything as an AMOS
  32. bank-Even within a program)you must add .Abk to the end of its filename.
  33. Imagine you were saving a file with the name FILE,you would write:
  34. FILE.Abk
  35. Or in a program:
  36. Save "FILE.Abk"
  37. If you are loading one of these banks in a program,you must remember to add
  38. the .Abk .
  39. NOTE:NOT ALL FILES THAT ARE LOADED OR SAVED REQUIRE THE .Abk EXTENSION.
  40.  
  41.  
  42.  
  43.  
  44.  
  45.